home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / dev / c / MemPools1_2.lha / mempools / Makefile < prev    next >
Makefile  |  1995-05-22  |  3KB  |  132 lines

  1. ###
  2. ###  MemPools:  malloc() replacement using standard Amiga pool functions.
  3. ###  Copyright  (C)  1994    Jochen Wiedmann
  4. ###
  5. ###  This program is free software; you can redistribute it and/or modify
  6. ###  it under the terms of the GNU General Public License as published by
  7. ###  the Free Software Foundation; either version 2 of the License, or
  8. ###  (at your option) any later version.
  9. ###
  10. ###  This program is distributed in the hope that it will be useful,
  11. ###  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ###  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ###  GNU General Public License for more details.
  14. ###
  15. ###  You should have received a copy of the GNU General Public License
  16. ###  along with this program; if not, write to the Free Software
  17. ###  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. ###
  19. ###
  20. ###  This is the Makefile for gmake.
  21. ###
  22. ###
  23. ###  Computer:  Amiga 1200
  24. ###
  25. ###  Compilers: Dice 3.01
  26. ###             SAS/C 6.50
  27. ###             gcc 2.6.1
  28. ###
  29. ###
  30. ###  Author:    Jochen Wiedmann
  31. ###             Am Eisteich 9
  32. ###       72555 Metzingen
  33. ###             Germany
  34. ###
  35. ###             Phone: (0049) 7123 14881
  36. ###             Internet: jochen.wiedmann@uni-tuebingen.de
  37. ###
  38.  
  39.  
  40. SRCS=calloc.c free.c init.c malloc.c realloc.c strdup.c \
  41.      MemPoolPuddleSize.c MemPoolThreshSize.c MemPoolFlags.c
  42.  
  43. OBJS=calloc.o free.o init.o malloc.o realloc.o strdup.o \
  44.      MemPoolPuddleSize.o MemPoolThreshSize.o MemPoolFlags.o
  45.  
  46. LIBS=mempoolss.lib mempoolssr.lib mempools.lib libmempools.a
  47.  
  48. CFLAGS=-pedantic -Wall -ansi -O3
  49. CC=gcc
  50.  
  51. ############################################################################
  52. ###
  53. ###  Targets: all clean dist check time
  54. ###
  55. ############################################################################
  56.  
  57. all: libmempools.a
  58.  
  59. dist:
  60.     dmake dist
  61.  
  62. mempoolss.lib:
  63.     dmake mempoolss.lib
  64.  
  65. mempoolssr.lib:
  66.     dmake mempoolssr.lib
  67.  
  68. mempools.lib:
  69.     rm -rf #?.o
  70.     smake mempools.lib
  71.  
  72. libmempools.a:
  73.     rm -f libmempools.a
  74.     for file in $(OBJS); do \
  75.         echo gcc -c $(CFLAGS) `basename $$file .o`.c -o $$file; \
  76.         gcc -c $(CFLAGS) `basename $$file .o`.c -o $$file; \
  77.     done;
  78.     ar q libmempools.a $(OBJS)
  79.     ranlib libmempools.a
  80.     rm $(OBJS)
  81.  
  82. libmempoolsd.a:
  83.     rm -f libmempoolsd.a
  84.     for file in $(OBJS); do \
  85.         echo gcc -c -DDEBUG -g -gstabs $(CFLAGS) `basename $$file .o`.c -o $$file; \
  86.         gcc -c -DDEBUG -g -gstabs $(CFLAGS) `basename $$file .o`.c -o $$file; \
  87.     done;
  88.     ar q libmempoolsd.a $(OBJS)
  89.     ranlib libmempoolsd.a
  90.     rm $(OBJS)
  91.  
  92. clean:
  93.     rm -rf #?.o #?.lib lib#?.a dtmp:comp?
  94.  
  95. check: TimeMem
  96.     @avail flush
  97.     @TimeMem VERBOSE
  98.     @avail flush
  99.     @rm -f TimeMem TimeMem.o
  100.  
  101. time: TimeMem TimeMem.dice TimeMem.sas TimeMem.ixemul TimeMem.libnix TimeProg
  102.     @echo You'd better get a cup of coffee now ...
  103.     @echo
  104.     @echo Timing Dice functions:
  105.     @TimeProg "TimeMem.dice"
  106.     @echo Timing SAS/C functions
  107.     @TimeProg "TimeMem.sas"
  108.     @echo Timing ixemul functions
  109.     @TimeProg "TimeMem.ixemul"
  110.     @echo Timing libnix functions
  111.     @TimeProg "TimeMem.libnix"
  112.     @echo Timing MemPool functions
  113.     @TimeProg "TimeMem"
  114.  
  115. TimeMem: TimeMem.c
  116.     gcc -ansi -noixemul $(CFLAGS) -o TimeMem TimeMem.c -L. -lmempools
  117.  
  118. TimeMem.dice:
  119.     dmake TimeMem.dice
  120.  
  121. TimeMem.sas: TimeMem.c
  122.     smake TimeMem.sas
  123.  
  124. TimeMem.ixemul: TimeMem.c rand.c
  125.     gcc -ansi $(CFLAGS) -o TimeMem.ixemul TimeMem.c rand.c
  126.  
  127. TimeMem.libnix: TimeMem.c rand.c
  128.     gcc -ansi -noixemul $(CFLAGS) -o TimeMem.libnix TimeMem.c rand.c
  129.  
  130. TimeProg: TimeProg.c
  131.     gcc -ansi -noixemul $(CFLAGS)
  132.